
.hero2{
  display: flex;
  flex-flow: column;
  text-align: center;
  padding-top: 200px;
  height: 460px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(/image/background.png) center / cover;
}
.hero2 h2{
  font-size: 60px;
  color: white;
}
.overview{
    list-style: none;
    color: white;
    background-color: #4E4E42;
}
.overview li{
    list-style: none;
    padding: 10px 20px;
    font-size: 20px;
}


.news-body {
  display: flex;
  flex-direction: row-reverse;
  text-align: left;
  background-color: white;
  padding: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.news-body.open {
  max-height: 500px;
  padding: 20px;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}
.news-header h3 {
  padding: 10px;
  margin: 0;
}
.news-body .text{
  flex: 1;
  text-align: left;
}
.news-body img {
  max-width: 300px;
  margin-top: 10px;
}

.jobs{
  background-color: white;
}
#jobs-container{
  background-color: white;
  color: black;
  text-align: center;
}

#jobs-container h3{
  font-size: 50px;
}

.access-content {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  color: white;
  background-color: #4E4E42;
}

.access-text {
  flex: 1;
  min-width: 250px;
}

.access-text li{
  list-style: none;
      padding: 10px 20px;
    font-size: 20px;
}

.access-map {
  flex: 1;
  width: 100%;
  height: 300px;
  min-width: 300px;
}

.form {
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 774px) {
    .news-body {
      flex-direction: column-reverse;
      text-align: left;
  }
  .news-body img {
    max-width: 100%;
  }
}